body{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
background-image: url("black.jpg");
background-repeat: repeat;
}

#framecontent{
position: absolute;
top: 0;
bottom: 0; 
left: 0;
width: 250px; /*Width of frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #484848;
color: white;
}

#maincontent{
position: fixed;
padding-left: 15px;
top: 0; 
left: 250px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 

background: #dfdddc;
border: 1px solid black;
opacity:.9;
filter:alpha(opacity=90); /* For IE8 and earlier */
}

#maincontent p{
padding-right:50px;
}

#maincontent a:link{
color: blue;
}
#maincontent a:visited {
    color: #248f24;
}
#maincontent a:hover {
    color: red;
}
#maincontent a:active {
    color: yellow;
}

#maincontent ol li{
margin: 0px;
font-size: 16px;
padding-bottom: 20px;
}

.innertube img{
margin: 0px;
}

.innertube h4{
margin: 30px;
}

.innertube ul{
margin: 0px;
font-size: 16px;
font-weight: bold;
}

.innertube h2{
margin: 15px;
color: #DDDDDD;
}

.innertube a:link{
color: #DDDDDD;
}
.innertube a:visited {
    color: #33CC33;
}
.innertube a:hover {
    color: red;
}
.innertube a:active {
    color: yellow;
} 

* html body{ /*IE6 hack*/
padding: 0 0 0 200px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}